home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / OCLIEN.PAK / FRAME.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  52 lines

  1. // frame.h : interface of the CMainFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. class CMainFrame : public CMDIFrameWnd
  14. {
  15.     DECLARE_DYNAMIC(CMainFrame)
  16. public:
  17.     CMainFrame();
  18.  
  19. // Attributes
  20. public:
  21.     CPalette m_palette;
  22.  
  23. // Operations
  24. public:
  25.     BOOL SelectPalette(BOOL bBackground);
  26.  
  27. // Implementation
  28. public:
  29.     virtual ~CMainFrame();
  30. #ifdef _DEBUG
  31.     virtual void AssertValid() const;
  32.     virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34.  
  35. // Control bar embedded members
  36. protected:
  37.     CStatusBar  m_wndStatusBar;
  38.     CToolBar    m_wndToolBar;
  39.  
  40. // Generated message map functions
  41. protected:
  42.     //{{AFX_MSG(CMainFrame)
  43.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  44.     afx_msg void OnWindowTileHorz();
  45.     afx_msg void OnPaletteChanged(CWnd* pFocusWnd);
  46.     afx_msg BOOL OnQueryNewPalette();
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49. };
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52.